WarcEntry.cs 250 B

1234567891011121314
  1. using System.ComponentModel;
  2. namespace WarcViewerBlazorWinForm.Backend.Warc
  3. {
  4. internal class WarcEntry
  5. {
  6. public string Type { get; set; }
  7. public string Url { get; set; }
  8. //TODO: More Field for parse
  9. }
  10. }