sanAntonioSeniorGolf/API/DTO/UnSettable.cs

8 lines
88 B
C#
Raw Normal View History

2024-05-20 15:00:47 -05:00
namespace API.DTO
{
public struct UnSettable<T>
{
public T value { get; set; }
}
}