sanAntonioSeniorGolf/API/DTO/UnSettable.cs

8 lines
88 B
C#

namespace API.DTO
{
public struct UnSettable<T>
{
public T value { get; set; }
}
}