13 lines
202 B
C#
13 lines
202 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TTSW.Utils
|
|
{
|
|
public class GuidModel
|
|
{
|
|
public Guid id { get; set; }
|
|
}
|
|
}
|