12 lines
356 B
C#
12 lines
356 B
C#
namespace QtCNETAPI.Models
|
|
{
|
|
public class Room
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string CreatorId { get; set; } = string.Empty;
|
|
public DateTime CreatedAt { get; set; } = new DateTime();
|
|
public int UserCount { get; set; } = 0;
|
|
}
|
|
}
|