presence123/Demo/Data/LocalData/Entity/Group.cs

18 lines
288 B
C#
Raw Permalink Normal View History

2024-10-21 12:41:56 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.domain.Models
{
public class GroupLocalEntity
{
2024-10-25 09:41:35 +00:00
public int Id { get; set; }
2024-10-21 12:41:56 +00:00
public required string Name { get; set; }
2024-10-25 08:47:11 +00:00
2024-10-21 12:41:56 +00:00
}
}