19 lines
388 B
C#
19 lines
388 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace E_Book
|
|
{
|
|
internal class Texte : MediaAssets
|
|
{
|
|
private decimal charCount;
|
|
public Texte(decimal charCount)
|
|
{
|
|
this.charCount = charCount;
|
|
this.pageCount = Math.Ceiling(charCount / 2000);
|
|
}
|
|
}
|
|
}
|