19 lines
241 B
C#
19 lines
241 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Model.APIItem
|
|||
|
{
|
|||
|
public class UsepositionItem
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
public string UsePosition { get; set; }
|
|||
|
|
|||
|
|
|||
|
|
|||
|
public string ProjectId { get; set; }
|
|||
|
}
|
|||
|
}
|