pr1/presence/data/LocalData/Entity/Group.cs

14 lines
293 B
C#
Raw Normal View History

2024-10-19 21:12:06 +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-12-19 17:36:57 +00:00
}