Files
StructureHelper/StructureHelperCommon/Models/Calculators/GenericResult.cs
2024-03-10 19:20:01 +05:00

16 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Calculators
{
public class GenericResult<T> : IResult
{
public bool IsValid { get; set; }
public string? Description { get; set; }
public T? Value { get; set; }
}
}