12345678910111213141516 |
- using Invercargill;
- namespace Usm {
- public class Git {
- public string origin { get; set; }
- public string commit { get; set; }
- public static PropertyMapper<Git> get_mapper() {
- return new PropertyMapperBuilder<Git>()
- .map<string>("origin", o => o.origin, (o, v) => o.origin = v)
- .map<string>("commit", o => o.commit, (o, v) => o.commit = v)
- .set_constructor(() => new Git())
- .build();
- }
- }
- }
|