mirror of
				https://github.com/Tyrrrz/CliFx.git
				synced 2025-10-25 15:19:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			467 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			467 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| 
 | |
| namespace CliFx.Demo.Models
 | |
| {
 | |
|     public class Book
 | |
|     {
 | |
|         public string Title { get; }
 | |
| 
 | |
|         public string Author { get; }
 | |
| 
 | |
|         public DateTimeOffset Published { get; }
 | |
| 
 | |
|         public Isbn Isbn { get; }
 | |
| 
 | |
|         public Book(string title, string author, DateTimeOffset published, Isbn isbn)
 | |
|         {
 | |
|             Title = title;
 | |
|             Author = author;
 | |
|             Published = published;
 | |
|             Isbn = isbn;
 | |
|         }
 | |
|     }
 | |
| } |