12 lines
354 B
C#
12 lines
354 B
C#
namespace qtc_api.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;
|
|
}
|
|
}
|