public static string GetDescription(this ExpungeReason that) => that.ToFriendlyNameString(name => LocalizedStrings.ExpungeReason[name].GetValue("Description"));
public ExpungeReasonVM(ExpungeReason reason) { this.Name = reason.ToFriendlyNameString(); this.Description = reason.GetDescription(); this.Key = reason; }
public static string ToFriendlyNameString(this ExpungeReason that) => that.ToFriendlyNameString(name => LocalizedStrings.ExpungeReason[name].GetValue("Name"));