pr1/presence/data/Entity/Group.cs

14 lines
295 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;
2024-12-23 09:12:26 +00:00
namespace presence.data.Entity
2024-10-19 21:12:06 +00:00
{
public class GroupLocalEntity
{
public required int Id { get; set; }
public required string Name { get; set; }
}
2024-12-19 17:36:57 +00:00
}