b086190ab0
update migrations for unique index fix missing total connection time include total connection time in get client query
26 lines
698 B
C#
26 lines
698 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace SharedLibraryCore.Database.Models
|
|
{
|
|
public class SharedEntity
|
|
{
|
|
/// <summary>
|
|
/// indicates if the entity is active
|
|
/// </summary>
|
|
public bool Active { get; set; } = true;
|
|
|
|
///// <summary>
|
|
///// Specifies when the entity was created
|
|
///// </summary>
|
|
//[Column(TypeName="datetime")]
|
|
//public DateTime CreatedDateTime { get; set; }
|
|
|
|
///// <summary>
|
|
///// Specifies when the entity was updated
|
|
///// </summary>
|
|
//[Column(TypeName = "datetime")]
|
|
//public DateTime? UpdatedDateTime { get;set; }
|
|
}
|
|
}
|