19 lines
417 B
C#
19 lines
417 B
C#
using SQLite;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.MobApp.Entities
|
|
{
|
|
public abstract class BaseEntity
|
|
{
|
|
[PrimaryKey]
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
public bool IsActive { get; set; } = true;
|
|
|
|
public DateTime CreatedDate { get; set; } = DateTime.UtcNow;
|
|
}
|
|
} |