10 lines
210 B
C#
10 lines
210 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MileageTraker.Web.ViewModels.User
|
|
{
|
|
public class RolesViewModel
|
|
{
|
|
public string[] Roles { get; set; }
|
|
public IList<string> AvailableRoles { get; set; }
|
|
}
|
|
} |