Skip to content

Instantly share code, notes, and snippets.

@mr5z
Created October 29, 2020 11:56
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 mr5z/10d8015800f572a95c18235a85527264 to your computer and use it in GitHub Desktop.
Save mr5z/10d8015800f572a95c18235a85527264 to your computer and use it in GitHub Desktop.
public class CaveDto
{
public int Id { get; set; }
public string Name { get; set; }
public UserDto Author { get; set; }
public List<PathDto> Path { get; set; }
public MapDto Map { get; set; }
public DateTimeOffset DateCreated { get; set; }
public DeviceType DeviceOrigin { get; set; }
public long Duration { get; set; }
public double EndPointRadius { get; set; }
public bool ShowJumpScare { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment