You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
362 B
15 lines
362 B
using Blazorise;
|
|
|
|
namespace HeartTrack.Models
|
|
{
|
|
public class Report
|
|
{
|
|
public int Id { get; set; }
|
|
public string Username { get; set; }
|
|
public string ReportedUser { get; set; }
|
|
public string Raison { get; set; }
|
|
public string Description { get; set; }
|
|
public List<Message> Messages { get; set; }
|
|
}
|
|
}
|