9 lines
		
	
	
		
			206 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			206 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Inventario.API.Models
 | |
| {
 | |
|     public class Disco
 | |
|     {
 | |
|         public int Id { get; set; }
 | |
|         public string Mediatype { get; set; } = string.Empty;
 | |
|         public int Size { get; set; }
 | |
|     }
 | |
| } |