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.
25 lines
546 B
25 lines
546 B
namespace Model;
|
|
|
|
public class Notepad
|
|
{
|
|
public int Id { get; set; }
|
|
public int UserId { get; set; }
|
|
public int InquiryId { get; set; }
|
|
public string Notes { get; set; }
|
|
|
|
public Notepad() { }
|
|
|
|
public Notepad(int id, int userId, int inquiryId, string notes)
|
|
{
|
|
Id = id;
|
|
UserId = userId;
|
|
InquiryId = inquiryId;
|
|
Notes = notes;
|
|
}
|
|
public Notepad(int userId, int inquiryId, string notes)
|
|
{
|
|
UserId = userId;
|
|
InquiryId = inquiryId;
|
|
Notes = notes;
|
|
}
|
|
} |