Files
BeWoPlaner/Data/Security/BeWoToolUserCollection.cs

13 lines
309 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
using Newtonsoft.Json;
namespace BeWo.Data.Security
{
[JsonConverter(typeof(BeWoToolUserCollectionJsonConverter))]
public class BeWoToolUserCollection
{
public List<BeWoToolUser> BeWoToolUserList { get; set; } = new List<BeWoToolUser>();
}
}