21 lines
595 B
C#
21 lines
595 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace DataModels
|
|||
|
{
|
|||
|
public class Notes
|
|||
|
{
|
|||
|
int id, idCustomer, idUser;
|
|||
|
string contents;
|
|||
|
bool isDeleted;
|
|||
|
|
|||
|
public int Id { get => id; set => id = value; }
|
|||
|
public int IdCustomer { get => idCustomer; set => idCustomer = value; }
|
|||
|
public int IdUser { get => idUser; set => idUser = value; }
|
|||
|
public string Contents { get => contents; set => contents = value; }
|
|||
|
public bool IsDeleted { get => isDeleted; set => isDeleted = value; }
|
|||
|
}
|
|||
|
}
|