-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: WIP refactor of lowest level CAC layer #168
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace ReadyPlayerMe.AvatarCreator.Avatars | ||
{ | ||
public class Avatar | ||
{ | ||
public string Id { get; set; } | ||
|
||
//TODO: ADD MORE PROPERTIES HERE | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace ReadyPlayerMe.AvatarCreator.Avatars | ||
{ | ||
public class AvatarTemplateResponse | ||
{ | ||
public List<AvatarTemplate> Data { get; set; } | ||
} | ||
|
||
public class AvatarTemplate | ||
{ | ||
public string Id { get; set; } | ||
|
||
public string Gender { get; set; } | ||
|
||
public string ImageUrl { get; set; } | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace ReadyPlayerMe.AvatarCreator.Avatars | ||
{ | ||
public class CreateDraftAvatarResponse | ||
{ | ||
public Avatar Data { get; set; } | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace ReadyPlayerMe.AvatarCreator.Avatars | ||
{ | ||
public class UserAvatarResponse | ||
{ | ||
public List<UserAvatar> Data { get; set; } | ||
} | ||
|
||
public class UserAvatar | ||
{ | ||
public string Partner { get; set; } | ||
|
||
public string Id { get; set; } | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Example of class output of using point 1.