10 lines
291 B
C#
10 lines
291 B
C#
namespace CompanyManagment.App.Contracts.Job;
|
|
|
|
public class JobViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string JobName { get; set; }
|
|
public string JobCode { get; set; }
|
|
public string SearchResultTitle { get; set; }
|
|
public string SearchResultCode { get; set; }
|
|
} |