15 lines
435 B
C#
15 lines
435 B
C#
using SmallSoftwareContracts.Enums;
|
|
|
|
namespace SmallSoftwareDatabase.Models;
|
|
|
|
internal class Post
|
|
{
|
|
public string Id { get; set; } = Guid.NewGuid().ToString();
|
|
public required string PostId { get; set; }
|
|
public required string PostName { get; set; }
|
|
public PostType PostType { get; set; }
|
|
public double Salary { get; set; }
|
|
public bool IsActual { get; set; }
|
|
public DateTime ChangeDate { get; set; }
|
|
}
|