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