8 lines
168 B
C#
8 lines
168 B
C#
namespace AccountManagement.Application.Contracts.Position;
|
|
|
|
public class CreatePosition
|
|
{
|
|
public string Name { get; set; }
|
|
public int Value { get; set; }
|
|
|
|
} |