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

18 lines
297 B
C#
Raw 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
{
public required int Id { get; set; }
public required string Name { get; set; }
2024-10-25 08:47:11 +00:00
2024-10-21 12:41:56 +00:00
}
}