generated from ricardo/MVCLogin
18 lines
442 B
C#
18 lines
442 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SumaTube.Domain.Entities.UserPlan.UserPlan
|
|
{
|
|
public class ServiceLinkPart
|
|
{
|
|
public int OrderNum { get; set; }
|
|
public string Name { get; set; }
|
|
public string VariableName { get; set; }
|
|
public string Value { get; set; }
|
|
public bool CanUserEdit { get; set; }
|
|
}
|
|
}
|