17 lines
332 B
C#
17 lines
332 B
C#
using SQLite;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.MobApp.Entities.Location
|
|
{
|
|
[Table("Areas")]
|
|
public class Area : BaseEntity
|
|
{
|
|
public int AreaId { get; set; }
|
|
public string? AreaName { get; set; }
|
|
}
|
|
}
|