pr1/presence/domain/Models/Group.cs

14 lines
286 B
C#
Raw Normal View History

2024-11-20 17:50:01 +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.domain.Models
2024-11-20 17:50:01 +00:00
{
public class Group
{
public required int Id { get; set; }
public required string Name { get; set; }
}
2024-12-23 09:12:26 +00:00
}