using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TIAMWebApp.Shared.Application.Models { public class CreateUserProductMappingModel { public Guid ContextId { get; set; } public Guid UserId { get; set; } public int? Permission { get; set; } } }