Skip to content

Instantly share code, notes, and snippets.

@lluisfranco
Created December 12, 2017 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lluisfranco/a6b1eefe19ccddcd97e6cd65ae97f25b to your computer and use it in GitHub Desktop.
Save lluisfranco/a6b1eefe19ccddcd97e6cd65ae97f25b to your computer and use it in GitHub Desktop.
internal class MyResultDTO
{
[OLAPMemberNameAttribute("[Valuation Dates Accumulated].[Hierarchy].[Year].[MEMBER_CAPTION]")]
public string Year { get; set; }
[OLAPMemberNameAttribute("[Measures].[Gains Period]")]
public decimal? GainsPeriod { get; set; }
[OLAPMemberNameAttribute("[Measures].[Gains YTD]")]
public decimal? GainsYTD { get; set; }
[OLAPMemberNameAttribute("[Measures].[Amount]")]
public decimal? Amount { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment