LANCommander/LANCommander.Server/Models/ExistingEntityResult.cs
2024-08-04 18:44:33 -05:00

10 lines
237 B
C#

using LANCommander.Server.Data.Models;
namespace LANCommander.Server.Models
{
public class ExistingEntityResult<T> where T : BaseModel
{
public T Value { get; set; }
public bool Existing { get; set; }
}
}