22 lines
510 B
C#
22 lines
510 B
C#
using SQLite;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.MobApp.Entities.Account
|
|
{
|
|
[Table("DSMScopes")]
|
|
public class DSMScope
|
|
{
|
|
[PrimaryKey, AutoIncrement]
|
|
public int DSMScopeId { get; set; }
|
|
|
|
public string? DSMScopeName { get; set; }
|
|
public string? UserId { get; set; }
|
|
public int DistrictId { get; set; }
|
|
public bool IsActive { get; set; } = true;
|
|
}
|
|
}
|