10 lines
237 B
C#
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; }
|
|
}
|
|
}
|