9 lines
240 B
C#
9 lines
240 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AccountManagement.Application.Contracts.Position;
|
|
|
|
public class CreatePositionModalViewModel
|
|
{
|
|
public int LastPositionValue { get; set; }
|
|
public List<int> UnUsedPositionValue { get; set; }
|
|
} |