17 lines
466 B
C#
17 lines
466 B
C#
using CompanyManagment.App.Contracts.Job;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CompanyManagment.App.Contracts.CrossJob;
|
|
|
|
public class CreateCrossJob
|
|
{
|
|
public double SalaryRatioUnder { get; set; }
|
|
public long EquivalentRialUnder { get; set; }
|
|
public double SalaryRatioOver { get; set; }
|
|
public long EquivalentRialOver { get; set; }
|
|
public long CrossJobGuildId { get; set; }
|
|
|
|
|
|
} |