18 lines
338 B
C#
18 lines
338 B
C#
using SQLite;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.MobApp.Entities.Planning
|
|
{
|
|
[Table("Cycles")]
|
|
public class Cycle : BaseEntity
|
|
{
|
|
public byte CycleId { get; set; }
|
|
|
|
public string? CycleName { get; set; }
|
|
}
|
|
}
|